home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 June / CHIP Turkiye Haziran 1997.iso / oyun / wr3d / stunt_1 / xst1eu03.x < prev    next >
Text File  |  1997-02-18  |  9KB  |  413 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  48;
  136.  -9243.393555;-2941.061279;-11671.315430;,
  137.  -9243.393555;-3021.942139;-11671.315430;,
  138.  -9350.625000;-3021.941162;-11564.083984;,
  139.  -9350.625000;-2941.061279;-11564.083984;,
  140.  -9243.393555;-2941.061279;-11671.315430;,
  141.  -9243.393555;-3021.942139;-11671.315430;,
  142.  -9350.625000;-3021.941162;-11564.083984;,
  143.  -9350.625000;-2941.061279;-11564.083984;,
  144.  -8521.375977;-2941.061279;-11564.110352;,
  145.  -8521.375977;-3021.942139;-11564.110352;,
  146.  -8628.607422;-3021.941162;-11671.341797;,
  147.  -8628.607422;-2941.061279;-11671.341797;,
  148.  -8521.375977;-2941.061279;-11564.110352;,
  149.  -8521.375977;-3021.942139;-11564.110352;,
  150.  -8628.607422;-3021.941162;-11671.341797;,
  151.  -8628.607422;-2941.061279;-11671.341797;,
  152.  -8689.929688;-2806.062988;-11893.091797;,
  153.  -8689.929688;-2886.943848;-11893.091797;,
  154.  -8841.578125;-2886.942871;-11893.091797;,
  155.  -8841.578125;-2806.062988;-11893.091797;,
  156.  -8689.929688;-2806.062988;-11893.091797;,
  157.  -8689.929688;-2886.943848;-11893.091797;,
  158.  -8841.578125;-2886.942871;-11893.091797;,
  159.  -8841.578125;-2806.062988;-11893.091797;,
  160.  -9023.886719;-2806.062988;-11893.091797;,
  161.  -9023.886719;-2886.943848;-11893.091797;,
  162.  -9175.535156;-2886.942871;-11893.091797;,
  163.  -9175.535156;-2806.062988;-11893.091797;,
  164.  -9023.886719;-2806.062988;-11893.091797;,
  165.  -9023.886719;-2886.943848;-11893.091797;,
  166.  -9175.535156;-2886.942871;-11893.091797;,
  167.  -9175.535156;-2806.062988;-11893.091797;,
  168.  -8278.743164;-2940.079346;-10347.214844;,
  169.  -8278.743164;-3020.960205;-10347.214844;,
  170.  -8430.391602;-3020.959229;-10347.213867;,
  171.  -8430.391602;-2940.079346;-10347.213867;,
  172.  -8278.743164;-2940.079346;-10347.214844;,
  173.  -8278.743164;-3020.960205;-10347.214844;,
  174.  -8430.391602;-3020.959229;-10347.213867;,
  175.  -8430.391602;-2940.079346;-10347.213867;,
  176.  -9464.341797;-2940.079346;-10347.214844;,
  177.  -9464.341797;-3020.960205;-10347.214844;,
  178.  -9615.990234;-3020.959229;-10347.214844;,
  179.  -9615.990234;-2940.079346;-10347.214844;,
  180.  -9464.341797;-2940.079346;-10347.214844;,
  181.  -9464.341797;-3020.960205;-10347.214844;,
  182.  -9615.990234;-3020.959229;-10347.214844;,
  183.  -9615.990234;-2940.079346;-10347.214844;;
  184.  
  185.  24;
  186.  3;0,2,1;,
  187.  3;2,0,3;,
  188.  3;6,4,5;,
  189.  3;4,6,7;,
  190.  3;8,10,9;,
  191.  3;10,8,11;,
  192.  3;14,12,13;,
  193.  3;12,14,15;,
  194.  3;16,18,17;,
  195.  3;18,16,19;,
  196.  3;22,20,21;,
  197.  3;20,22,23;,
  198.  3;24,26,25;,
  199.  3;26,24,27;,
  200.  3;30,28,29;,
  201.  3;28,30,31;,
  202.  3;32,34,33;,
  203.  3;34,32,35;,
  204.  3;38,36,37;,
  205.  3;36,38,39;,
  206.  3;40,42,41;,
  207.  3;42,40,43;,
  208.  3;46,44,45;,
  209.  3;44,46,47;;
  210.  
  211.  MeshMaterialList {
  212.   5;
  213.   24;
  214.   0,
  215.   0,
  216.   0,
  217.   0,
  218.   1,
  219.   1,
  220.   1,
  221.   1,
  222.   2,
  223.   2,
  224.   2,
  225.   2,
  226.   3,
  227.   3,
  228.   3,
  229.   3,
  230.   4,
  231.   4,
  232.   4,
  233.   4,
  234.   4,
  235.   4,
  236.   4,
  237.   4;
  238.   Material {
  239.    1.000000;1.000000;1.000000;1.000000;;
  240.    15.000000;
  241.    1.000000;1.000000;1.000000;;
  242.    0.000000;0.000000;0.000000;;
  243.    TextureFilename {
  244.     "bb_ad3.tga";
  245.    }
  246.   }
  247.   Material {
  248.    1.000000;1.000000;1.000000;1.000000;;
  249.    15.000000;
  250.    1.000000;1.000000;1.000000;;
  251.    0.000000;0.000000;0.000000;;
  252.    TextureFilename {
  253.     "bb_ad2.tga";
  254.    }
  255.   }
  256.   Material {
  257.    1.000000;1.000000;1.000000;1.000000;;
  258.    15.000000;
  259.    1.000000;1.000000;1.000000;;
  260.    0.000000;0.000000;0.000000;;
  261.    TextureFilename {
  262.     "bb_ad5.tga";
  263.    }
  264.   }
  265.   Material {
  266.    1.000000;1.000000;1.000000;1.000000;;
  267.    15.000000;
  268.    1.000000;1.000000;1.000000;;
  269.    0.000000;0.000000;0.000000;;
  270.    TextureFilename {
  271.     "bb_ad4.tga";
  272.    }
  273.   }
  274.   Material {
  275.    1.000000;1.000000;1.000000;1.000000;;
  276.    15.000000;
  277.    1.000000;1.000000;1.000000;;
  278.    0.000000;0.000000;0.000000;;
  279.    TextureFilename {
  280.     "bb_ad1.tga";
  281.    }
  282.   }
  283.  }
  284.  MeshNormals {
  285.   48;
  286.   0.707107;0.000000;0.707106;,
  287.   0.707107;0.000000;0.707106;,
  288.   0.707107;0.000000;0.707106;,
  289.   0.707107;0.000000;0.707106;,
  290.   -0.707107;0.000000;-0.707106;,
  291.   -0.707107;0.000000;-0.707106;,
  292.   -0.707107;0.000000;-0.707106;,
  293.   -0.707107;0.000000;-0.707106;,
  294.   -0.707107;-0.000000;0.707107;,
  295.   -0.707107;-0.000000;0.707107;,
  296.   -0.707107;-0.000000;0.707107;,
  297.   -0.707107;-0.000000;0.707107;,
  298.   0.707107;0.000000;-0.707107;,
  299.   0.707107;0.000000;-0.707107;,
  300.   0.707107;0.000000;-0.707107;,
  301.   0.707107;0.000000;-0.707107;,
  302.   0.000000;-0.000000;1.000000;,
  303.   0.000000;-0.000000;1.000000;,
  304.   0.000000;-0.000000;1.000000;,
  305.   0.000000;-0.000000;1.000000;,
  306.   -0.000000;0.000000;-1.000000;,
  307.   -0.000000;0.000000;-1.000000;,
  308.   -0.000000;0.000000;-1.000000;,
  309.   -0.000000;0.000000;-1.000000;,
  310.   0.000000;-0.000000;1.000000;,
  311.   0.000000;-0.000000;1.000000;,
  312.   0.000000;-0.000000;1.000000;,
  313.   0.000000;-0.000000;1.000000;,
  314.   -0.000000;0.000000;-1.000000;,
  315.   -0.000000;0.000000;-1.000000;,
  316.   -0.000000;0.000000;-1.000000;,
  317.   -0.000000;0.000000;-1.000000;,
  318.   0.000006;0.000000;1.000000;,
  319.   0.000006;0.000000;1.000000;,
  320.   0.000006;0.000000;1.000000;,
  321.   0.000006;0.000000;1.000000;,
  322.   -0.000006;-0.000000;-1.000000;,
  323.   -0.000006;-0.000000;-1.000000;,
  324.   -0.000006;-0.000000;-1.000000;,
  325.   -0.000006;-0.000000;-1.000000;,
  326.   -0.000000;-0.000000;1.000000;,
  327.   -0.000000;-0.000000;1.000000;,
  328.   -0.000000;-0.000000;1.000000;,
  329.   -0.000000;-0.000000;1.000000;,
  330.   0.000000;0.000000;-1.000000;,
  331.   0.000000;0.000000;-1.000000;,
  332.   0.000000;0.000000;-1.000000;,
  333.   0.000000;0.000000;-1.000000;;
  334.  
  335.   24;
  336.   3;0,2,1;,
  337.   3;2,0,3;,
  338.   3;6,4,5;,
  339.   3;4,6,7;,
  340.   3;8,10,9;,
  341.   3;10,8,11;,
  342.   3;14,12,13;,
  343.   3;12,14,15;,
  344.   3;16,18,17;,
  345.   3;18,16,19;,
  346.   3;22,20,21;,
  347.   3;20,22,23;,
  348.   3;24,26,25;,
  349.   3;26,24,27;,
  350.   3;30,28,29;,
  351.   3;28,30,31;,
  352.   3;32,34,33;,
  353.   3;34,32,35;,
  354.   3;38,36,37;,
  355.   3;36,38,39;,
  356.   3;40,42,41;,
  357.   3;42,40,43;,
  358.   3;46,44,45;,
  359.   3;44,46,47;;
  360.  }
  361.  MeshTextureCoords {
  362.   48;
  363.   -0.000156;-0.000074;,
  364.   -0.000156;0.999920;,
  365.   0.999996;0.999915;,
  366.   0.999996;-0.000074;,
  367.   -0.000156;-0.000074;,
  368.   -0.000156;0.999920;,
  369.   0.999996;0.999915;,
  370.   0.999996;-0.000074;,
  371.   -0.000156;-0.000074;,
  372.   -0.000156;0.999920;,
  373.   0.999996;0.999915;,
  374.   0.999996;-0.000074;,
  375.   -0.000156;-0.000074;,
  376.   -0.000156;0.999920;,
  377.   0.999996;0.999915;,
  378.   0.999996;-0.000074;,
  379.   -0.000156;-0.000074;,
  380.   -0.000156;0.999920;,
  381.   0.999996;0.999915;,
  382.   0.999996;-0.000074;,
  383.   -0.000156;-0.000074;,
  384.   -0.000156;0.999920;,
  385.   0.999996;0.999915;,
  386.   0.999996;-0.000074;,
  387.   -0.000156;-0.000074;,
  388.   -0.000156;0.999920;,
  389.   0.999996;0.999915;,
  390.   0.999996;-0.000074;,
  391.   -0.000156;-0.000074;,
  392.   -0.000156;0.999920;,
  393.   0.999996;0.999915;,
  394.   0.999996;-0.000074;,
  395.   -0.000156;-0.000074;,
  396.   -0.000156;0.999920;,
  397.   0.999996;0.999915;,
  398.   0.999996;-0.000074;,
  399.   -0.000156;-0.000074;,
  400.   -0.000156;0.999920;,
  401.   0.999996;0.999915;,
  402.   0.999996;-0.000074;,
  403.   -0.000156;-0.000074;,
  404.   -0.000156;0.999920;,
  405.   0.999996;0.999915;,
  406.   0.999996;-0.000074;,
  407.   -0.000156;-0.000074;,
  408.   -0.000156;0.999920;,
  409.   0.999996;0.999915;,
  410.   0.999996;-0.000074;;
  411.  }
  412. }
  413.